home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 93 / CDMM_93_2.ISO / Project Nomads / nomads_demo_eng.exe / DEBRIS.TCL < prev    next >
Encoding:
Text File  |  2001-04-03  |  819 b   |  43 lines

  1. #
  2. #   Zustands-▄berwachungs-Script
  3. #   State Watch Script
  4. #
  5. #   Debris
  6. #
  7. #   created:    15-Jun-2000 Bernd
  8. #   
  9. #   (C) COPYRIGHT 2000 RADONLABS GMBH
  10. #
  11.  
  12. # --------------------------------------------------------
  13. #                     DEBRIS
  14. # --------------------------------------------------------
  15. proc debriswatch_normal {} {
  16.  
  17.     if       { [.iskilled] == "true"          } {
  18.             .announcestate explode
  19.     } elseif { [.isstatetimeover] == "true"   } {
  20.             .announcestate verglueh
  21.     }
  22. }
  23.  
  24. proc debriswatch_explode {} {
  25.  
  26.     if {[.isanimfinished] == "true"} {
  27.         .setremoveable true
  28.     }
  29. }
  30.  
  31. proc debriswatch_verglueh {} {
  32.  
  33.     if {[.isanimfinished] == "true"} {
  34.         .setremoveable true
  35.     }
  36. }
  37.  
  38. proc debriswatch_cinematic {} {
  39.  
  40.     # empty
  41. }    
  42.  
  43.